home *** CD-ROM | disk | FTP | other *** search
-
- // BEGIN -=- TWISTORI.POV -=-
-
- #include"colors.inc"
- #include"textures.inc"
- camera{location<0,0,-60>look_at 0}
- light_source{<-50,0,-99>White}
- light_source{<0,0,-99>White}
- light_source{<50,0,-99>White}
- background{Gray10}
- #declare A=0
- #while(A<720)
- torus{1.5,.25
- pigment{color rgb<
- abs(mod(720-A,30)-15)/15,
- 1-abs(mod(720-A,20)-10)/10,
- abs(mod(720-A,40)-20)/20>}
- finish{Shiny}
- translate x*10
- rotate y*A*5
- rotate z*A*20
- translate z*-20
- rotate x*A
- rotate y*A*.5
- rotate z*45}
- #declare A=A+(1/4)
- #end
-
- // END -=- TWISTORI.POV -=-
-
-